c# replace dash in string

49

c# replace dash in string -

string result = Regex.Replace(inputString, @"[^0-9]", "");

Comments

Submit
0 Comments